home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Your Choice 3
/
Your Choice Software Collection 3.iso
/
dos
/
qpeg15e
/
install.dat
/
DRVSRC
/
ET4000.ASM
< prev
next >
Wrap
Assembly Source File
|
1994-05-01
|
551b
|
34 lines
;
; QPEG video driver
; for Tseng Labs ET4000 chipsets
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: mov dl,al
shl al,4
or al,dl
mov dx,03cdh
out dx,al
retf
Init: mov dx,03bfh
mov al,03h
out dx,al
mov dl,0d8h
mov al,0a0h
out dx,al
retf
Exit: retf
Code Ends
End Procs
; End of source.